home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJDEV111.ZIP / include / sys / timeb.h < prev    next >
C/C++ Source or Header  |  1992-08-24  |  195b  |  12 lines

  1. #include <sys/types.h>
  2.  
  3. struct timeb
  4. {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;
  7.     short        timezone;
  8.     short        dstflag;
  9. };
  10.  
  11. extern int    ftime(struct timeb *);
  12.